home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / HARDWARE / Z80CARD / Z80card / source / 1 next >
Text File  |  1994-04-12  |  181b  |  11 lines

  1. ;sum the two numbers supplied by the Arc in locations
  2. ;hex 20 and 21, producing a result in hex 22 for the Arc
  3. ;to verify
  4. ORG 0
  5. LD A,($20)
  6. LD B,A
  7. LD A,($21)
  8. ADD A,B
  9. LD ($22),A
  10. HALT
  11.